home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / CLEARBUF.C < prev    next >
Encoding:
C/C++ Source or Header  |  1989-07-18  |  86 b   |  8 lines

  1. #include <bios.h>
  2.  
  3. void ClearBuf()
  4. {
  5.     while ( bioskey( 1 ) )
  6.         bioskey( 0 );
  7. }
  8.